-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwctob.c
43 lines (31 loc) · 1.06 KB
/
wctob.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*++
toro C Library
https://github.com/KilianKegel/toro-C-Library#toro-c-library-formerly-known-as-torito-c-library
Copyright (c) 2017-2025, Kilian Kegel. All rights reserved.
SPDX-License-Identifier: GNU General Public License v3.0
Module Name:
wctob.c
Abstract:
Implementation of the Standard C function.
Determines if a wide character corresponds to a multibyte character and returns its multibyte character representation.
Author:
Kilian Kegel
--*/
#include <stddef.h>
extern int wctomb(char* pmb, wchar_t wc);
/**
Synopsis
#include <wchar.h>
wchar_t* wcstok(wchar_t* pszStr, const wchar_t* pszSet, wchar_t** ppLast);
Description
https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/wctob?view=msvc-160
Parameters
https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/wctob?view=msvc-160#parameters
Returns
https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/wctob?view=msvc-160#return-value
**/
int wctob(wchar_t wc)
{
char c;
return 1 == wctomb(&c, wc) ? 0xFF & c : -1;
}